Synchronize! Pro can be controlled with AppleScript. Synchronization setups can be opened and synchronization started with simple script commands. Settings within synchronization documents, and preferences, cannot currently be changed with AppleScript. Synchronize! responds to AppleScript commands, but it is not recordable. The following scripting examples show what you can do with Synchronize! Pro and AppleScript. The text which follows can be entered directly as a script. -- Open Synchronize! Pro, just as if it were double-clicked. tell application "Synchronize! Pro" to run tell application "Synchronize! Pro" -- Open a synchronization document open file "Sync Server" -- If the Start Option "Start synchronization when the -- document is opened" is checked, -- the synchronization will be automatically started. -- Start a synchronization sync file "HD:Sync Big Disk" -- Synchronize! Pro will automatically open the -- specified document (if it's not already open) -- and start its synchronization -- Quit Synchronize! Pro quit end tell